home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / src / demos / REALITY / atom / Makefile < prev    next >
Encoding:
Makefile  |  1994-08-02  |  360 b   |  22 lines

  1. #!smake
  2. #
  3. # Makefile for molecule demo
  4. #
  5.  
  6. include ${ROOT}/usr/include/make/commondefs
  7.  
  8. TARGETS    = mview
  9.  
  10. LLDLIBS    = -lsphere -lfm -lgl -lm
  11.  
  12. HFILES    = light.h fileio.h geom.h panel.h mview.h
  13. CFILES    = light.c fileio.c mview.c menu.c geom.c panel.c help.c
  14.  
  15. default all: $(TARGETS)
  16.  
  17. include ${COMMONRULES}
  18.  
  19.  
  20. $(TARGETS): $(OBJECTS)
  21.     $(CCF) -o $@ $(OBJECTS) $(LDFLAGS)
  22.